From: Josef Schlehofer Date: Wed, 24 Sep 2025 11:34:50 +0000 (+0200) Subject: luci-app-nft-qos: drop this application X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22http:/www.crowdsec.net/%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22?a=commitdiff_plain;h=c27c0c98749aa1d5524ffabd7beeb2c4fedcfe84;p=project%2Fluci.git luci-app-nft-qos: drop this application Maintainer is no longer active and nft-qos does not work for some time. The last relevant change was in 2022 and since then it does not get any update. Signed-off-by: Josef Schlehofer --- diff --git a/applications/luci-app-nft-qos/Makefile b/applications/luci-app-nft-qos/Makefile deleted file mode 100644 index a7ee184997..0000000000 --- a/applications/luci-app-nft-qos/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -PKG_LICENSE:=Apache-2.0 - -LUCI_TITLE:=QoS over Nftables -LUCI_DEPENDS:=+luci-base +luci-compat +nft-qos - -PKG_MAINTAINER:=Rosy Song - -include ../../luci.mk - -# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua b/applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua deleted file mode 100644 index 899e41a7ff..0000000000 --- a/applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua +++ /dev/null @@ -1,62 +0,0 @@ --- Copyright 2018 Rosy Song --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.nft-qos", package.seeall) - -function index() - if not nixio.fs.access("/etc/config/nft-qos") then - return - end - - local e - - e = entry({"admin", "status", "realtime", "rate"}, template("nft-qos/rate"), _("Rate"), 5) - e.leaf = true - e.acl_depends = { "luci-app-nft-qos" } - - e = entry({"admin", "status", "realtime", "rate_status"}, call("action_rate")) - e.leaf = true - e.acl_depends = { "luci-app-nft-qos" } - - e = entry({"admin", "services", "nft-qos"}, cbi("nft-qos/nft-qos"), _("QoS over Nftables"), 60) - e.leaf = true - e.acl_depends = { "luci-app-nft-qos" } -end - -function _action_rate(rv, n) - local c = nixio.fs.access("/proc/net/ipv6_route") and - io.popen("nft list chain inet nft-qos-monitor " .. n .. " 2>/dev/null") or - io.popen("nft list chain ip nft-qos-monitor " .. n .. " 2>/dev/null") - - if c then - for l in c:lines() do - local _, i, p, b = l:match( - '^%s+ip ([^%s]+) ([^%s]+) counter packets (%d+) bytes (%d+)' - ) - if i and p and b then - -- handle expression - rv[#rv + 1] = { - rule = { - family = "inet", - table = "nft-qos-monitor", - chain = n, - handle = 0, - expr = { - { match = { right = i } }, - { counter = { packets = p, bytes = b } } - } - } - } - end - end - c:close() - end -end - -function action_rate() - luci.http.prepare_content("application/json") - local data = { nftables = {} } - _action_rate(data.nftables, "upload") - _action_rate(data.nftables, "download") - luci.http.write_json(data) -end diff --git a/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua b/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua deleted file mode 100644 index b2001f7802..0000000000 --- a/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua +++ /dev/null @@ -1,272 +0,0 @@ --- Copyright 2018 Rosy Song --- Licensed to the public under the Apache License 2.0. - -local uci = require("luci.model.uci").cursor() -local wa = require("luci.tools.webadmin") -local fs = require("nixio.fs") -local ipc = require("luci.ip") - -local def_rate_dl = uci:get("nft-qos", "default", "static_rate_dl") -local def_rate_ul = uci:get("nft-qos", "default", "static_rate_ul") -local def_unit_dl = uci:get("nft-qos", "default", "static_unit_dl") -local def_unit_ul = uci:get("nft-qos", "default", "static_unit_ul") - -local def_up = uci:get("nft-qos", "default", "dynamic_bw_up") -local def_down = uci:get("nft-qos", "default", "dynamic_bw_down") - -local limit_enable = uci:get("nft-qos", "default", "limit_enable") -local limit_mac_enable = uci:get("nft-qos", "default", "limit_mac_enable") -local limit_type = uci:get("nft-qos", "default", "limit_type") -local enable_priority = uci:get("nft-qos", "default", "priority_enable") - -local has_ipv6 = fs.access("/proc/net/ipv6_route") - -m = Map("nft-qos", translate("QoS over Nftables")) - --- --- Taboptions --- -s = m:section(TypedSection, "default", translate("NFT-QoS Settings")) -s.addremove = false -s.anonymous = true - -s:tab("limit", translate("Limit Rate by IP Address")) -s:tab("limitmac", translate("Limit Rate by Mac Address")) -s:tab("priority", translate("Traffic Priority")) - --- --- Static --- -o = s:taboption("limit", Flag, "limit_enable", translate("Limit Enable"), translate("Enable Limit Rate Feature")) -o.default = limit_enable or o.enabled -o.rmempty = false - -o = s:taboption("limit", ListValue, "limit_type", translate("Limit Type"), translate("Type of Limit Rate")) -o.default = limit_static or "static" -o:depends("limit_enable","1") -o:value("static", "Static") -o:value("dynamic", "Dynamic") - -o = s:taboption("limit", Value, "static_rate_dl", translate("Default Download Rate"), translate("Default value for download rate")) -o.datatype = "uinteger" -o.default = def_rate_dl or '50' -o:depends("limit_type","static") - -o = s:taboption("limit", ListValue, "static_unit_dl", translate("Default Download Unit"), translate("Default unit for download rate")) -o.default = def_unit_dl or "kbytes" -o:depends("limit_type","static") -o:value("bytes", "Bytes/s") -o:value("kbytes", "KBytes/s") -o:value("mbytes", "MBytes/s") - -o = s:taboption("limit", Value, "static_rate_ul", translate("Default Upload Rate"), translate("Default value for upload rate")) -o.datatype = "uinteger" -o.default = def_rate_ul or '50' -o:depends("limit_type","static") - -o = s:taboption("limit", ListValue, "static_unit_ul", translate("Default Upload Unit"), translate("Default unit for upload rate")) -o.default = def_unit_ul or "kbytes" -o:depends("limit_type","static") -o:value("bytes", "Bytes/s") -o:value("kbytes", "KBytes/s") -o:value("mbytes", "MBytes/s") - --- --- Dynamic --- -o = s:taboption("limit", Value, "dynamic_bw_down", translate("Download Bandwidth (Mbps)"), translate("Default value for download bandwidth")) -o.default = def_up or '100' -o.datatype = "uinteger" -o:depends("limit_type","dynamic") - -o = s:taboption("limit", Value, "dynamic_bw_up", translate("Upload Bandwidth (Mbps)"), translate("Default value for upload bandwidth")) -o.default = def_down or '100' -o.datatype = "uinteger" -o:depends("limit_type","dynamic") - -o = s:taboption("limit", Value, "dynamic_cidr", translate("Target Network (IPv4/MASK)"), translate("Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc.")) -o.datatype = "cidr4" -ipc.routes({ family = 4, type = 1 }, function(rt) o.default = rt.dest end) -o:depends("limit_type","dynamic") - -if has_ipv6 then - o = s:taboption("limit", Value, "dynamic_cidr6", translate("Target Network6 (IPv6/MASK)"), translate("Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc.")) - o.datatype = "cidr6" - o:depends("limit_type","dynamic") -end - -o = s:taboption("limit", DynamicList, "limit_whitelist", translate("White List for Limit Rate")) -o.datatype = "ipaddr" -o:depends("limit_enable","1") - --- --- limit speed by mac address --- -o = s:taboption("limitmac", Flag, "limit_mac_enable", translate("Limit Enable"), translate("Enable Limit Rate Feature")) -o.default = limit_mac_enable or o.enabled -o.rmempty = false - --- --- Priority --- -o = s:taboption("priority", Flag, "priority_enable", translate("Enable Traffic Priority"), translate("Enable this feature")) -o.default = enable_priority or o.enabled -o.rmempty = false - -o = s:taboption("priority", ListValue, "priority_netdev", translate("Default Network Interface"), translate("Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc.")) -o:depends("priority_enable", "1") -wa.cbi_add_networks(o) - --- --- Static Limit Rate - Download Rate --- -if limit_enable == "1" and limit_type == "static" then - - x = m:section(TypedSection, "download", translate("Static QoS-Download Rate")) - x.anonymous = true - x.addremove = true - x.template = "cbi/tblsection" - - o = x:option(Value, "hostname", translate("Hostname")) - o.datatype = "hostname" - o.default = 'undefined' - - if has_ipv6 then - o = x:option(Value, "ipaddr", translate("IP Address (v4 / v6)")) - else - o = x:option(Value, "ipaddr", translate("IP Address (v4 Only)")) - end - o.datatype = "ipaddr" - if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") then - o.titleref = luci.dispatcher.build_url("admin", "status", "overview") - end - - o = x:option(Value, "rate", translate("Rate")) - o.default = def_rate_dl or '50' - o.size = 4 - o.datatype = "uinteger" - - o = x:option(ListValue, "unit", translate("Unit")) - o.default = def_unit_dl or "kbytes" - o:value("bytes", "Bytes/s") - o:value("kbytes", "KBytes/s") - o:value("mbytes", "MBytes/s") - --- --- Static Limit Rate - Upload Rate --- - y = m:section(TypedSection, "upload", translate("Static QoS-Upload Rate")) - y.anonymous = true - y.addremove = true - y.template = "cbi/tblsection" - - o = y:option(Value, "hostname", translate("Hostname")) - o.datatype = "hostname" - o.default = 'undefined' - - if has_ipv6 then - o = y:option(Value, "ipaddr", translate("IP Address (v4 / v6)")) - else - o = y:option(Value, "ipaddr", translate("IP Address (v4 Only)")) - end - o.datatype = "ipaddr" - if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") then - o.titleref = luci.dispatcher.build_url("admin", "status", "overview") - end - - o = y:option(Value, "rate", translate("Rate")) - o.default = def_rate_ul or '50' - o.size = 4 - o.datatype = "uinteger" - - o = y:option(ListValue, "unit", translate("Unit")) - o.default = def_unit_ul or "kbytes" - o:value("bytes", "Bytes/s") - o:value("kbytes", "KBytes/s") - o:value("mbytes", "MBytes/s") - -end - --- --- Traffic Priority Settings --- -if enable_priority == "1" then - - s = m:section(TypedSection, "priority", translate("Traffic Priority Settings")) - s.anonymous = true - s.addremove = true - s.template = "cbi/tblsection" - - o = s:option(ListValue, "protocol", translate("Protocol")) - o.default = "tcp" - o:value("tcp", "TCP") - o:value("udp", "UDP") - o:value("udplite", "UDP-Lite") - o:value("sctp", "SCTP") - o:value("dccp", "DCCP") - - o = s:option(ListValue, "priority", translate("Priority")) - o.default = "1" - o:value("-400", "1") - o:value("-300", "2") - o:value("-225", "3") - o:value("-200", "4") - o:value("-150", "5") - o:value("-100", "6") - o:value("0", "7") - o:value("50", "8") - o:value("100", "9") - o:value("225", "10") - o:value("300", "11") - - o = s:option(Value, "service", translate("Service"), translate("e.g. https, 23, (separator is comma)")) - o.default = '?' - - o = s:option(Value, "comment", translate("Comment")) - o.default = '?' - -end - --- --- Static By Mac Address --- -if limit_mac_enable == "1" then - - x = m:section(TypedSection, "client", translate("Limit Traffic Rate By Mac Address")) - x.anonymous = true - x.addremove = true - x.template = "cbi/tblsection" - - o = x:option(Value, "hostname", translate("Hostname")) - o.datatype = "hostname" - o.default = '' - - o = x:option(Value, "macaddr", translate("MAC Address")) - o.rmempty = true - o.datatype = "macaddr" - - o = x:option(Value, "drate", translate("Download Rate")) - o.default = def_rate_dl or '50' - o.size = 4 - o.datatype = "uinteger" - - o = x:option(ListValue, "drunit", translate("Unit")) - o.default = def_unit_dl or "kbytes" - o:value("bytes", "Bytes/s") - o:value("kbytes", "KBytes/s") - o:value("mbytes", "MBytes/s") - - o = x:option(Value, "urate", translate("Upload Rate")) - o.default = def_rate_ul or '50' - o.size = 4 - o.datatype = "uinteger" - - o = x:option(ListValue, "urunit", translate("Unit")) - o.default = def_unit_ul or "kbytes" - o:value("bytes", "Bytes/s") - o:value("kbytes", "KBytes/s") - o:value("mbytes", "MBytes/s") - -end - -return m diff --git a/applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm b/applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm deleted file mode 100644 index 8874e37ca1..0000000000 --- a/applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm +++ /dev/null @@ -1,167 +0,0 @@ -<%# - Copyright 2018 Rosy Song - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - - - -

<%:Realtime Rate%>

- -
<%:This page gives an overview over currently download/upload rate.%>
- -
- <%:Realtime Download Rate%> -
-
-
-
<%:IP Address%>
-
<%:Download Rate%>
-
<%:Bytes Total%>
-
<%:Packets Total%>
-
-
-
- <%:Collecting data...%> -
-
-
-
-
- -
- <%:Realtime Upload Rate%> -
-
-
-
<%:IP Address%>
-
<%:Upload Rate%>
-
<%:Bytes Total%>
-
<%:Packets Total%>
-
-
-
- <%:Collecting data...%> -
-
-
-
-
- -<%+footer%> diff --git a/applications/luci-app-nft-qos/po/ar/nft-qos.po b/applications/luci-app-nft-qos/po/ar/nft-qos.po deleted file mode 100644 index e9fbc1f03c..0000000000 --- a/applications/luci-app-nft-qos/po/ar/nft-qos.po +++ /dev/null @@ -1,266 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-07-16 16:41+0000\n" -"Last-Translator: Rex_sa \n" -"Language-Team: Arabic \n" -"Language: ar\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 5.7-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "مجموع البايت" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "جمع البيانات..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "تعليق" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "اسم المضيف" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "عنوان الـ IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "عنوان MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "لا توجد معلومات متاحة" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "الأولوية" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "البروتوكول" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/bg/nft-qos.po b/applications/luci-app-nft-qos/po/bg/nft-qos.po deleted file mode 100644 index 2f65c00e78..0000000000 --- a/applications/luci-app-nft-qos/po/bg/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-10-18 20:25+0000\n" -"Last-Translator: Boyan Alexiev \n" -"Language-Team: Bulgarian \n" -"Language: bg\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8-rc\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Байта общо" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Събиране на данни..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Коментар" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Хостнейм" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP адрес" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Няма налична информация" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Протокол" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/bn_BD/nft-qos.po b/applications/luci-app-nft-qos/po/bn_BD/nft-qos.po deleted file mode 100644 index 1b8254368d..0000000000 --- a/applications/luci-app-nft-qos/po/bn_BD/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-10-08 17:53+0000\n" -"Last-Translator: Rayhan Nabi \n" -"Language-Team: Bengali (Bangladesh) \n" -"Language: bn_BD\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "হোস্টনেম" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "আইপি এড্রেস" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC অ্যাড্রেস" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "প্রোটোকল" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/ca/nft-qos.po b/applications/luci-app-nft-qos/po/ca/nft-qos.po deleted file mode 100644 index cdd8484069..0000000000 --- a/applications/luci-app-nft-qos/po/ca/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-03-18 11:11+0000\n" -"Last-Translator: \"S. Barj.\" \n" -"Language-Team: Catalan \n" -"Language: ca\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.5-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "S’estan recollint dades…" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Commentari" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Nom de l’amfitrió" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioritat" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protocol" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Unitat" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/cs/nft-qos.po b/applications/luci-app-nft-qos/po/cs/nft-qos.po deleted file mode 100644 index b5c4d712fc..0000000000 --- a/applications/luci-app-nft-qos/po/cs/nft-qos.po +++ /dev/null @@ -1,267 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-06-20 09:25+0000\n" -"Last-Translator: Pavel Borecki \n" -"Language-Team: Czech \n" -"Language: cs\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" -"X-Generator: Weblate 5.13-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Celkově bajtů" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Shromažďování dat…" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Komentář" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Výchozí rychlost stahování" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Výchozí jednotka pro příjem" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Výchozí síťové rozhraní" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Výchozí rychlost odesílání" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Výchozí jednotka pro odesílání" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Výchozí jednotka pro rychlost příjmu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Výchozí jednotka pro rychlost odesílání" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Výchozí hodnota pro šířku pásma příjmu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Výchozí hodnota pro rychlost příjmu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Výchozí hodnota pro šířku pásma odesílání" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Výchozí hodnota pro rychlost odesílání" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Šířka pásma příjmu (Mb/s)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Rychlost příjmu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Zapnout funkci omezování rychlosti" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Zapnout prioritu provozu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Zapnout tuto funkci" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Udělit luci-app-nft-qos přístup do UCI nastavování" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Název stroje" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP adresa" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP adresa (v4/v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP adresa (pouze v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Zapnout limit" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Omezovat rychlost podle IP adresy" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Omezovat rychlost podle MAC adresy" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Omezovat rychlost provozu podle MAC adresy" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Typ limitu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC adresa" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Nastavení NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Síťové rozhraní, na kterém provádět omezování provozu – např. br-lan, " -"eth0.1, eth0, atd." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Síť, na kterou uplatnit, např. 192.168.1.0/24, 10.2.0.0/16, atd." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Síť, na kterou uplatnit, např. AAAA::BBBB/64, CCCC::1/128, atd." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Nejsou k dispozici žádné údaje" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Celkem paketů" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Priorita" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokol" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS přes Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Rychlost" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Rychlost příjmu (v reálném čase)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Rychlost (v reálném čase)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Rychlost odesílání (v reálném čase)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Služba" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Statická rychlost QoS stahování" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Statická rychlost QoS odesílání" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Cílová síť (IPv4/maska)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Cílová síť6 (IPv6/maska)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "Tato stránka podává přehled o stávající rychlosti příjmu/odesílání." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Priorita provozu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Nastavení priority provozu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Typ omezení rychlosti" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Jednotka" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Šířka pásma odesílání (Mb/s)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Rychlost odesílání" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Seznam povolených pro omezení rychlosti" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "např. https, 23, (oddělovačem je čárka)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/da/nft-qos.po b/applications/luci-app-nft-qos/po/da/nft-qos.po deleted file mode 100644 index a8e0dd355e..0000000000 --- a/applications/luci-app-nft-qos/po/da/nft-qos.po +++ /dev/null @@ -1,267 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2023-07-17 15:06+0000\n" -"Last-Translator: drax red \n" -"Language-Team: Danish \n" -"Language: da\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.0-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bytes i alt" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Indsamler data..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Kommentar" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Standard downloadhastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Standard downloadenhed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Standardnetværks interface" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Standard uploadhastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Standard Upload-enhed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Standardenhed for downloadhastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Standardenhed for uploadhastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Standardværdi for download-båndbredde" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Standardværdi for downloadhastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Standardværdi for upload-båndbredde" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Standardværdi for uploadhastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Download Båndbredde (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Downloadhastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Aktiver funktionen Grænsehastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Aktiver trafikprioritet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Aktiver denne funktion" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Giv UCI-adgang til luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Værtsnavn" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP Address" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP-adresse (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP-adresse (kun v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Begræns Aktiver" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Begrænsning af hastighed efter IP-adresse" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Begrænsningshastighed efter Mac-adresse" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Begrænse trafikhastighed efter Mac-adresse" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Begræns type" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC-adresse" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QoS indstillinger" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Netværks interface til trafik shaping, f.eks. br-lan, eth0.1, eth0, osv." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Netværk, der skal anvendes, f.eks. 192.168.1.0/24, 10.2.0.0.0/16 osv." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Netværk, der skal anvendes, f.eks. AAAA::BBBB/64, CCCC::1/128 osv." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Ingen oplysninger tilgængelige" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Pakker i alt" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioritet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokol" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS over Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Rate" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Downloadhastighed i realtid" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Realtidssats" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Upload i realtid" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Tjeneste" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Statisk QoS-downloadhastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Statisk QoS-Upload-hastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Destinationsnetværk (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Destination Network6 (IPv6/MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Denne side giver et overblik over den aktuelle download/upload-hastighed." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Trafikprioritet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Indstillinger for trafikprioritet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Type af grænseværdi Sats" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Enhed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Upload båndbredde (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Upload-hastighed" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Hvidliste for grænseværdi" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "f.eks. https, 23, (separator er et komma)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/de/nft-qos.po b/applications/luci-app-nft-qos/po/de/nft-qos.po deleted file mode 100644 index ec69ceaa24..0000000000 --- a/applications/luci-app-nft-qos/po/de/nft-qos.po +++ /dev/null @@ -1,271 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-02-07 23:08+0000\n" -"Last-Translator: Ettore Atalan \n" -"Language-Team: German \n" -"Language: de\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.10-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bytes Gesamt" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Daten werden gesammelt..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Kommentar" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Standard-Downloadrate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Standard-Download-Einheit" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Standard-Netzwerkschnittstelle" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Standard-Uploadrate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Standard-Upload-Einheit" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Standardeinheit für Downloadrate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Standardeinheit für Upload-Rate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Standardwert für Download-Bandbreite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Standardwert für Downloadrate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Standardwert für Upload-Bandbreite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Standardwert für Upload-Rate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Download-Bandbreite (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Download-Rate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Aktiviere die Limit-Rate-Funktion" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Aktiviere Traffic-Priorisierung" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Diese Funktion aktivieren" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "UCI-Zugriff für luci-app-nft-qos erlauben" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Hostname" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP-Adresse" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP-Adresse (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP-Adresse (nur v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Limit aktivieren" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Quote pro IP-Adresse begrenzen" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Quote pro MAC-Adresse begrenzen" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Verkehrsrate per Mac-Adresse begrenzen" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Limit-Typ" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC-Adresse" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QoS-Einstellungen" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Netzwerkschnittstelle für Traffic Shaping, z.B. br-lan, eth0.1, eth0, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" -"Netzwerk, auf das angewandt werden soll, z.B. 192.168.1.0/24, 10.2.0.0/16, " -"etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" -"Netzwerk, auf das angewandt werden soll, z.B. AAAA::BBBB/64, CCCC::1/128, " -"etc." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Keine Informationen verfügbar" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Pakete Gesamt" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Priorität" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokoll" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS via Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Rate" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Echtzeit-Downloadrate" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Echtzeit-Rate" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Echtzeit-Uploadrate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Service" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Statische QoS-Download-Rate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Statische QoS-Upload-Rate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Zielnetzwerk (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Zielnetzwerk6 (IPv6/MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Diese Seite gibt einen Überblick über die aktuelle Download-/Uploadrate." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Traffic-Priorität" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Einstellungen für Traffic-Priorität" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Typ der Limit-Rate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Einheit" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Upload-Bandbreite (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Uploadrate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Whitelist für die Limit-Rate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "z.B. https, 23, (Trennzeichen ist Komma)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/el/nft-qos.po b/applications/luci-app-nft-qos/po/el/nft-qos.po deleted file mode 100644 index b8c1289251..0000000000 --- a/applications/luci-app-nft-qos/po/el/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2022-05-15 17:04+0000\n" -"Last-Translator: MarioK239 \n" -"Language-Team: Greek \n" -"Language: el\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.13-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Συλλογή δεδομένων..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Σχόλιο" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Hostname" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Διεύθυνση IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Πρωτόκολλο" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/es/nft-qos.po b/applications/luci-app-nft-qos/po/es/nft-qos.po deleted file mode 100644 index 326146e51e..0000000000 --- a/applications/luci-app-nft-qos/po/es/nft-qos.po +++ /dev/null @@ -1,272 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2025-07-29 16:05+0000\n" -"Last-Translator: Franco Castillo \n" -"Language-Team: Spanish \n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Total de bytes" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Recopilando datos..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Comentario" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Velocidad de descarga predeterminada" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Unidad de descarga predeterminada" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Interfaz de red predeterminada" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Velocidad de carga predeterminada" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Unidad de carga predeterminada" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Unidad predeterminada para la velocidad de descarga" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Unidad predeterminada para la velocidad de carga" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Valor predeterminado para el ancho de banda de descarga" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Valor predeterminado para la velocidad de descarga" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Valor predeterminado para el ancho de banda de carga" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Valor predeterminado para la velocidad de carga" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Ancho de banda de descarga (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Velocidad de descarga" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Activar función de límite de velocidad" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Activar prioridad de tráfico" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Activar esta característica" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Conceder acceso UCI para luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Nombre de host" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Dirección IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "Dirección IP (v4/v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "Dirección IP (solo v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Activar límite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Tasa límite por dirección IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Tasa límite por dirección Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Limitar la tasa de tráfico por dirección Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Tipo de límite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Dirección MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Configuración de NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Interfaz de red para configuración de tráfico, por ejemplo, br-lan, eth0.1, " -"eth0, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Red a aplicar, por ejemplo. 192.168.1.0/24, 10.2.0.0/16, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Red a aplicar, por ejemplo. AAAA::BBBB/64, CCCC::1/128, etc." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "No hay información disponible" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Paquetes totales" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioridad" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protocolo" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS sobre Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Velocidad" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Velocidad de descarga en tiempo real" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Velocidad en tiempo real" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Velocidad de carga en tiempo real" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Servicio" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Velocidad de descarga de QoS estática" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Velocidad de carga de QoS estática" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Red de destino (IPv4 / MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Red de destino 6 (IPv6/MÁSCARA)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Esta página ofrece una vista general sobre la velocidad de descarga/carga " -"actual." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Prioridad de tráfico" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Ajustes de prioridad de tráfico" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Tipo de límite de velocidad" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Unidad" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Ancho de banda de carga (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Velocidad de carga" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Lista blanca para el límite de velocidad" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "p.ej. https, 23, (el separador es una coma)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/fi/nft-qos.po b/applications/luci-app-nft-qos/po/fi/nft-qos.po deleted file mode 100644 index 64aa0af8ac..0000000000 --- a/applications/luci-app-nft-qos/po/fi/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-12-23 18:05+0000\n" -"Last-Translator: Hannu Nyman \n" -"Language-Team: Finnish \n" -"Language: fi\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.10-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Tavua yhteensä" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Kerätään tietoja..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Kommentti" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Laitenimi" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP-osoite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP-osoite (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP-osoite (vain v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC-osoite" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "Mt" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QoS-asetukset" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Ei tietoja saatavilla" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Paketteja yhteensä" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioriteetti" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokolla" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Palvelu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/fr/nft-qos.po b/applications/luci-app-nft-qos/po/fr/nft-qos.po deleted file mode 100644 index 506736a826..0000000000 --- a/applications/luci-app-nft-qos/po/fr/nft-qos.po +++ /dev/null @@ -1,268 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-11-17 07:48+0000\n" -"Last-Translator: gcb \n" -"Language-Team: French \n" -"Language: fr\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.9-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Nombre total d’octets" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Récupération des données…" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Commentaire" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Vitesse de téléchargement par défaut" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Unité de téléchargement par défaut" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Interface réseau par défaut" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Taux de téléchargement par défaut" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Unité de téléchargement par défaut" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Unité par défaut pour la vitesse de téléchargement" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Unité par défaut pour la vitesse de téléversement" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Valeur par défaut pour la bande passante de téléchargement" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Valeur par défaut du débit de téléchargement" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Valeur par défaut pour la bande passante de téléversement" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Valeur par défaut pour le taux de téléversement" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Bande passante de téléchargement (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Taux de téléchargement" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Activer la fonction de limitation du débit" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Activer la priorité du trafic" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Activer cette fonctionnalité" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Accorder l'accès à l'UCI pour luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Nom d'hôte (hostname)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Adresse IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "Adresse IP (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "Adresse IP (v4 uniquement)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Limitation activée" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Taux limite par adresse IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Taux limite par adresse Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Limiter le débit du trafic par adresse Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Type de limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Adresse MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Paramètres NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Interface réseau pour la mise en forme du trafic, par exemple br-lan, " -"eth0.1, eth0, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Réseau à appliquer, par exemple 192.168.1.0/24, 10.2.0.0/16, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Réseau à appliquer, par exemple AAAA::BBBB/64, CCCC::1/128, etc." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Aucune information disponible" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Nombre total de paquets" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Priorité" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protocole" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS au-dessus des Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Taux" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Taux de téléchargement en temps réel" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Taux en temps réel" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Taux de téléchargement en temps réel" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Service" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Taux de téléchargement QoS statique" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Taux de téléversement QoS statique" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Réseau cible (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Réseau cible6 (IPv6/MASQUE)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Cette page donne un aperçu du taux de téléchargement / téléversement actuel." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Priorité de trafic" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Paramètres de priorité du trafic" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Type de taux limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Unité" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Bande passante de téléversement (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Taux de téléversement" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Liste blanche pour le taux limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "par exemple https, 23, (le séparateur est une virgule)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/ga/nft-qos.po b/applications/luci-app-nft-qos/po/ga/nft-qos.po deleted file mode 100644 index 6bbdd3ec7a..0000000000 --- a/applications/luci-app-nft-qos/po/ga/nft-qos.po +++ /dev/null @@ -1,269 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-06-20 14:21+0000\n" -"Last-Translator: Aindriú Mac Giolla Eoin \n" -"Language-Team: Irish \n" -"Language: ga\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(" -"n>6 && n<11) ? 3 : 4;\n" -"X-Generator: Weblate 5.13-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Beart Iomlán" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Sonraí a bhailiú..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Trácht" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Ráta réamhshocraithe íoslódáil" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Aonad íoslódála réamhshocraithe" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Comhéadan Líonra Réamhshocraithe" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Ráta Uaslódála Réamhshocraithe" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Aonad Uaslódála Réamhshocraithe" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Aonad réamhshocraithe le haghaidh ráta íoslódála" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Aonad réamhshocraithe le haghaidh ráta uaslódála" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Luach réamhshocraithe le haghaidh bandaleithead íoslódála" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Luach réamhshocraithe le haghaidh ráta íoslódála" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Luach réamhshocraithe le haghaidh bandaleithead uaslódála" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Luach réamhshocraithe don ráta uaslódála" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Íoslódáil Bandaleithid (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Ráta íosluchtaigh" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Cumasaigh Gné Ráta Teorainn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Cumasaigh Tosaíocht Tráchta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Cumasaigh an ghné seo" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Deonaigh rochtain UCI do luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Ainm óstach" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Seoladh IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "Seoladh IP (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "Seoladh IP (v4 Amháin)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Cumasaigh Teorainn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Ráta Teorainn de réir Seoladh IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Ráta Teorainn le Seoladh Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Ráta Teorainn le Seol Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Cineál Teorainn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Seoladh MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Socruithe NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Comhéadan Líonra le haghaidh Múnlú Tráchta, e.g. br-lan, eth0.1, eth0, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Líonra le cur i bhfeidhm, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Líonra le cur i bhfeidhm, e.g. AAAA::BBBB/64, CCCC:: 1/128, etc." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Níl aon eolas ar fáil" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Paicéid Iomlán" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Tosaíocht" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Prótacal" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS thar Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Ráta" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Ráta fíor-ama íosluchtaigh" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Ráta Fíor-ama" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Ráta Uaslódála Fíor-ama" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Seirbhís" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Statach QoS-Ráta Íoslódála" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Ráta Statach QoS-Uaslódáil" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Líonra Sprioc (IPv4/MASC)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Líonra Sprioc6 (IPv6/MASC)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Tugann an leathanach seo forbhreathnú ar an ráta íoslódála/uaslódála faoi " -"láthair." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Tosaíocht Tráchta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Socruithe Tosaíochta Tráchta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Cineál Ráta Teorainn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Aonad" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Uaslódáil Bandaleithid (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Ráta Uaslódála" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Liosta Bán le haghaidh Ráta Teorann" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "e.g. https, 23, (coma is ea an deighilteoir)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/he/nft-qos.po b/applications/luci-app-nft-qos/po/he/nft-qos.po deleted file mode 100644 index 76cf38f5ea..0000000000 --- a/applications/luci-app-nft-qos/po/he/nft-qos.po +++ /dev/null @@ -1,266 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-02-25 06:41+0000\n" -"Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" -"Language: he\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " -"n % 10 == 0) ? 2 : 3));\n" -"X-Generator: Weblate 5.5-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "נאספים נתונים…" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "כתובת IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "כתובת חומרה (MAC)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "אין פרטים זמינים" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "פרוטוקול" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "יחידה" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/hi/nft-qos.po b/applications/luci-app-nft-qos/po/hi/nft-qos.po deleted file mode 100644 index 6a14b7562b..0000000000 --- a/applications/luci-app-nft-qos/po/hi/nft-qos.po +++ /dev/null @@ -1,259 +0,0 @@ -msgid "" -msgstr "" -"Language: hi\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/hu/nft-qos.po b/applications/luci-app-nft-qos/po/hu/nft-qos.po deleted file mode 100644 index 2a5e978096..0000000000 --- a/applications/luci-app-nft-qos/po/hu/nft-qos.po +++ /dev/null @@ -1,267 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-05-08 13:02+0000\n" -"Last-Translator: hmzs \n" -"Language-Team: Hungarian \n" -"Language: hu\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.12-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bájt összesen" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Adatok összegyűjtése…" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Megjegyzés" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Alapértelmezett letöltési arány" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Alapértelmezett letöltési mértékegység" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Alapértelmezett hálózati csatoló" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Alapértelmezett feltöltési arány" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Alapértelmezett feltöltési mértékegység" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Alapértelmezett mértékegység a letöltési aránynál" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Alapértelmezett mértékegység a feltöltési aránynál" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Alapértelmezett érték a letöltési sávszélességnél" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Alapértelmezett érték a letöltési aránynál" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Alapértelmezett érték a feltöltési sávszélességnél" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Alapértelmezett érték a feltöltési aránynál" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Letöltési sávszélesség (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Letöltési arány" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Arány korlátozása funkció engedélyezése" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Forgalomprioritás engedélyezése" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "A funkció engedélyezése" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "UCI hozzáférés engedélyezése a luci-app-nft-qos alkalmazásnak" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Gépnév" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP-cím" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP-cím (v4/v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP-cím (csak v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Korlátozás engedélyezése" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Sebesség korlátozás IP-cím alapján" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Sebesség korlátozás MAC-cím alapján" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Forgalmi arány korlátozás MAC-cím alapján" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Korlátozás típusa" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC-cím" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QoS beállítások" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Hálózati csatoló a forgalom alakításához, például br-lan, eth0.1, eth0, stb." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Alkalmazandó hálózat, például 192.168.1.0/24, 10.2.0.0/16, stb." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Alkalmazandó hálózat, például AAAA::BBBB/64, CCCC::1/128, stb." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Nincs elérhető információ" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Csomagok összesen" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioritás" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokoll" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "Nftables-es QoS" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Arány" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Valós idejű letöltési arány" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Valós idejű arány" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Valós idejű feltöltési arány" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Szolgáltatás" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Statikus QoS-letöltési arány" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Statikus QoS feltöltési arány" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "IPv4 célhálózat (IPv4/maszk)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "IPv6 célhálózat (IPv6/maszk)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Ez az oldal áttekintést ad a jelenlegi letöltési és feltöltési arányról." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Forgalomprioritás" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Forgalomprioritás beállításai" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Arány korlátozásának típusa" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Mértékegység" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Feltöltési sávszélesség (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Feltöltési arány" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Fehérlista az arány korlátázásához" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "például.: https, 23, (vesszővel elválasztva)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/it/nft-qos.po b/applications/luci-app-nft-qos/po/it/nft-qos.po deleted file mode 100644 index 2d5a672ee8..0000000000 --- a/applications/luci-app-nft-qos/po/it/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-07-17 22:44+0000\n" -"Last-Translator: Random \n" -"Language-Team: Italian \n" -"Language: it\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.7-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bytes totali" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Raccolta dati..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Commento" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Velocità di download predefinita" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Unita di Download Predefinita" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Interfaccia di rete predefinita" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Frequenza di upload predefinita" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Unità di upload predefinita" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Nome host" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Indirizzo IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Indirizzo MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Nessuna informazione disponibile" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Priorità" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protocollo" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Servizio" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Unità" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/ja/nft-qos.po b/applications/luci-app-nft-qos/po/ja/nft-qos.po deleted file mode 100644 index ffd8fdd11f..0000000000 --- a/applications/luci-app-nft-qos/po/ja/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-03-28 23:40+0000\n" -"Last-Translator: Ioroi Kouhei \n" -"Language-Team: Japanese \n" -"Language: ja\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.5-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "合計バイト数" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "データを収集中..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "コメント" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "ダウンロード帯域幅のデフォルト値" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "アップロード帯域幅のデフォルト値" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "ダウンロード帯域幅 (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "luci-app-nft-qosにUCIアクセスを許可" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "ホスト名" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP アドレス" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP アドレス (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP アドレス (v4 のみ)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC アドレス" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QoS 設定" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "情報なし" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "優先度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "プロトコル" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "サービス" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "アップロード帯域幅 (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/ko/nft-qos.po b/applications/luci-app-nft-qos/po/ko/nft-qos.po deleted file mode 100644 index 5d9b059135..0000000000 --- a/applications/luci-app-nft-qos/po/ko/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2022-12-27 13:49+0000\n" -"Last-Translator: somni \n" -"Language-Team: Korean \n" -"Language: ko\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.15.1-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "데이터 수집 중..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "메모" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "호스트명" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP 주소" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "프로토콜" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/lt/nft-qos.po b/applications/luci-app-nft-qos/po/lt/nft-qos.po deleted file mode 100644 index 5d45b3af86..0000000000 --- a/applications/luci-app-nft-qos/po/lt/nft-qos.po +++ /dev/null @@ -1,278 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-09-16 09:50+0000\n" -"Last-Translator: Džiugas Januševičius \n" -"Language-Team: Lithuanian \n" -"Language: lt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " -"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " -"1 : 2);\n" -"X-Generator: Weblate 5.8-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Iš viso baitų" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Renkama/-i informacija (duomenys)..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Komentuoti" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Numatyta atsisiuntimo sparta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Numatytas atsisiuntimo vienetas" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Numatyta tinklo sąsaja" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Numatyta įkėlimo sparta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Numatytas įkėlimo vienetas" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Numatytas vienetas, kuris būtų naudojamas atsisiuntimo spartai" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Numatytas vienetas, kuris būtų naudojamas įkėlimo spartai" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" -"Numatyta reikšmė atsisiuntimo duomenų, siuntimo ir perdavimo srauto " -"pralaidumui" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Numatyta reikšmė atsisiuntimo spartai" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" -"Numatyta reikšmė įkėlimo duomenų, siuntimo ir perdavimo srauto pralaidumui" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Numatyta reikšmė įkėlimo spartai" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" -"Atsisiuntimo duomenų siuntimo ir perdavimo srauto pralaidumo sparta (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Atsisiuntimo sparta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Įgalinti „Riboti spartą“ funkciją" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Įjungti srauto pirmenybę" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Įjungti/Įgalinti šią funkciją" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Suteikti „UCI“ prieigą – „luci-app-nft-qos“" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Įrenginio (t.y skleidėjo/vedėjo) pavadinimas" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP adresas" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP adresas (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP adresas (tik v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Įjungti ribojimą" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Riboti spartą pagal IP adresą" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Riboti spartą pagal „MAC“ adresą" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Riboti „eisminę spartą“ pagal „MAC“ adresą" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Ribojimo tipas" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "„MAC“ adresas" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "„NFT-QoS“ nustatymai" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Tinklo sąsają ir/arba sietuvą srauto formavimui, pvz. „br-lan“, „eth0.1“, " -"„eth0“ ir t.t." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" -"Tinklas, kuriame bus pritaikyta, pvz: „192.168.1.0/24“, „10.2.0.0/16“ ir t.t." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" -"Tinklas, kuriame bus pritaikyta, pvz: „AAAA::BBBB/64“, „CCCC::1/128“ ir t.t." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Nėra informacijos" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Iš viso paketų" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Pirmenybė" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokolas" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "„QoS“ virš „Nftables“" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Sparta" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Tikru laiku atsinaujinantis atsisiuntimo spartumas" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Tikru laiku atsinaujinantis spartumas" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Tikru laiku atsinaujinantis įkėlimo spartumas" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Tarnyba" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Nekintamoji „QoS“ atsisiuntimo sparta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Nekintamoji „QoS“ įkėlimo sparta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Taikomasis tinklas (IPv4/tinklavimo „KAUKĖ“ – adresų segregatorius)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" -"Taikomasis tinklas 6-i (IPv6/tinklavimo „KAUKĖ“ – adresų segregatorius)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "Šis puslapis pateikia dabartine atsisiuntimo/įkėlimo spartos apžvalga." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Srauto pirmenybė" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Srauto pirmenybės nustatymai" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Spartos ribojimo tipas" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Vienetas" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Įkėlimo duomenų siuntimo ir perdavimo srauto pralaidumo sparta (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Įkėlimo sparta" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Baltasis sąrašas, skirtas apribojant spartą" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "Pvz: „https, 23, (atskiriama kableliu)“" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/mr/nft-qos.po b/applications/luci-app-nft-qos/po/mr/nft-qos.po deleted file mode 100644 index 15281df36f..0000000000 --- a/applications/luci-app-nft-qos/po/mr/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-07 09:18+0000\n" -"Last-Translator: Prachi Joshi \n" -"Language-Team: Marathi \n" -"Language: mr\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.11-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "डेटा संकलित करीत आहे ..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "टिप्पणी" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "होस्टनाव" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "प्रोटोकॉल" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "युनिट" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/ms/nft-qos.po b/applications/luci-app-nft-qos/po/ms/nft-qos.po deleted file mode 100644 index 08aa8ffdbe..0000000000 --- a/applications/luci-app-nft-qos/po/ms/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-04-22 05:24+0000\n" -"Last-Translator: Abdul Muizz Bin Abdul Jalil \n" -"Language-Team: Malay \n" -"Language: ms\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.11.1-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Jumlah bait" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Mengumpul data..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Ulasan" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Nama hos" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Alamat IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokol" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po b/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po deleted file mode 100644 index d81964657d..0000000000 --- a/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-03-14 08:43+0000\n" -"Last-Translator: Lasse Skogland \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.11-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Byte totalt" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Samler inn data…" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Kommentar" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Tjenernavn" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP-adresse" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC-adresse" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokoll" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Tjeneste" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/nl/nft-qos.po b/applications/luci-app-nft-qos/po/nl/nft-qos.po deleted file mode 100644 index 81f9a4360a..0000000000 --- a/applications/luci-app-nft-qos/po/nl/nft-qos.po +++ /dev/null @@ -1,267 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-06-19 08:25+0000\n" -"Last-Translator: Meow \n" -"Language-Team: Dutch \n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.12.1\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bytes totaal" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Data aan het verzamelen..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Hostnaam" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/pl/nft-qos.po b/applications/luci-app-nft-qos/po/pl/nft-qos.po deleted file mode 100644 index 9bd06b0c10..0000000000 --- a/applications/luci-app-nft-qos/po/pl/nft-qos.po +++ /dev/null @@ -1,267 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-07-17 00:19+0000\n" -"Last-Translator: Matthaiks \n" -"Language-Team: Polish \n" -"Language: pl\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.7-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bajtów ogółem" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Trwa zbieranie danych..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Komentarz" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Domyślna szybkość pobierania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Domyślna jednostka pobierania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Domyślny interfejs sieciowy" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Domyślna szybkość wysyłania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Domyślna jednostka wysyłania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Domyślna jednostka szybkości pobierania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Domyślna jednostka szybkości wysyłania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Wartość domyślna przepustowości pobierania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Wartość domyślna szybkości pobierania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Wartość domyślna przepustowości wysyłania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Wartość domyślna szybkości wysyłania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Przepustowość pobierania (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Szybkość pobierania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Włącz funkcję limitu prędkości" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Włącz priorytet ruchu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Włącz tę funkcję" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Przyznaj luci-app-nft-qos dostęp do UCI" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Nazwa hosta" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Adres IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "Adres IP (v4/v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "Adres IP (tylko v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Włącz limit" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Limit prędkości według adresu IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Limit prędkości według adresu MAC" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Ogranicz natężenie ruchu według adresu MAC" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Typ limitu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Adres MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Ustawienia NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Interfejs sieciowy dla kształtowania ruchu, np. br-lan, eth0.1, eth0 itp." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Sieć do zastosowania, np. 192.168.1.0/24, 10.2.0.0/16, itp." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Sieć do zastosowania, np. AAAA::BBBB/64, CCCC::1/128, itp." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Brak dostępnych informacji" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Suma pakietów" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Priorytet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokół" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS przez Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Szybkość" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Szybkość pobierania w czasie rzeczywistym" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Szybkość w czasie rzeczywistym" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Szybkość wysyłania w czasie rzeczywistym" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Usługa" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Statyczna prędkość pobierania QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Statyczna prędkość wysyłania QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Sieć docelowa (IPv4/Maska)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Sieć docelowa (IPv6/Maska)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "Ta strona zawiera przegląd aktualnej prędkości pobierania/wysyłania." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Priorytet ruchu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Ustawienia priorytetu ruchu sieciowego" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Typ limitu prędkości" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Jednostka" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Przepustowość wysyłania (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Szybkość wysyłania" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Biała lista dla limitu prędkości" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "np. https, 23, (separator to przecinek)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/pt/nft-qos.po b/applications/luci-app-nft-qos/po/pt/nft-qos.po deleted file mode 100644 index e7cba528e5..0000000000 --- a/applications/luci-app-nft-qos/po/pt/nft-qos.po +++ /dev/null @@ -1,268 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-07-20 20:09+0000\n" -"Last-Translator: ssantos \n" -"Language-Team: Portuguese \n" -"Language: pt\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.7-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Total de Bytes" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "A recolher dados..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Comentário" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Taxa de Descarregamento Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Unidade de Descarregamento Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Interface de Rede Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Taxa de Envio Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Unidade de Envio Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Unidade padrão para taxa de descarregamento" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Unidade padrão para taxa de envio" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Valor padrão para largura de banda de descarregamento" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Valor padrão para taxa de descarregamento" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Valor padrão para a largura de banda de envio" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Valor padrão para a taxa de envio" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Largura de Banda de Descarregamento (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Taxa de Descarregamento" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Ativar Recurso de Limite de Taxa" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Ativar Prioridade de Tráfego" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Ativar este recurso" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Conceder UCI acesso ao luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Nome do Host" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Endereço IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "Endereço IP (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "Endereço IP (apenas v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Limitar Ativação" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Limite da taxa por endereço IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Limite da taxa por endereço Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Limitar a taxa de tráfego por endereço Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Tipo de Limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Endereço MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Configurações NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Interface de Rede para Traffic Shaping, por exemplo, br-lan, eth0.1, eth0, " -"etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Rede a aplicar, por exemplo, 192.168.1.0/24, 10.2.0.0/16, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Rede a aplicar, por exemplo, AAAA::BBBBB/64, CCCC::1/128, etc." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Sem informação disponível" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Total de Pacotes" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioridade" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protocolo" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "Qos sobre Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Taxa" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Taxa de Descarregamento em Tempo Real" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Taxa em Tempo Real" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Taxa de Envio em Tempo Real" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Serviço" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Taxa Estática de Descarregamanto de QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Taxa Estática de Envio QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Rede de Destino (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Rede6 de Destino (IPv6/MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Esta página dá uma visão geral sobre a taxa de descarregamento/envio atual." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Prioridade de tráfego" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Configurações de Prioridade de Tráfego" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Tipo de Taxa Limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Unidade" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Largura de Banda de Envio (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Taxa de Envio" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Lista Branca para a Taxa Limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "por exemplo https, 23, (o separador é vírgula)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po b/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po deleted file mode 100644 index d5c802ef64..0000000000 --- a/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po +++ /dev/null @@ -1,267 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-11-17 07:48+0000\n" -"Last-Translator: gcb \n" -"Language-Team: Portuguese (Brazil) \n" -"Language: pt_BR\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.9-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Total de Bytes" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Coletando dados..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Comentário" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Taxa de Download Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Unidade de Download Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Interface de Rede Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Taxa de Upload Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Unidade de Upload Padrão" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Unidade padrão para taxa de download" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Unidade padrão para taxa de upload" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Valor padrão para a largura de banda para download" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Valor padrão para a taxa de download" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Valor padrão para a largura de banda de upload" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Valor padrão para a taxa de upload" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Largura de Banda de Download (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Taxa de Download" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Ativar o Recurso de Limitação de Taxa" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Ativar a Prioridade de Tráfego" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Ativar este recurso" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Conceda acesso UCI ao luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Nome do equipamento (hostname)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Endereço IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "Endereço IP (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "Endereço IP (apenas v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Ativar Limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Limite da taxa por endereço IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Limite da taxa por endereço Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Limite a taxa de tráfego através de um endereço Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Tipo de Limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Endereço MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Configurações NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"A Interface de rede para realizar Traffic Shaping, por exemplo, br-lan, " -"eth0.1, eth0, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Rede a ser aplicada, por exemplo, 192.168.1.0/24, 10.2.0.0/16, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Rede a ser aplicada, por exemplo, AAAA::BBBB/64, CCCC:1/128, etc." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Nenhuma informação disponível" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Total de Pacotes" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioridade" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protocolo" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "Qos sobre Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Taxa" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Taxa de Download em Tempo Real" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Taxa em Tempo Real" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Taxa de Upload em Tempo Real" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Serviço" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "QoS estático - Taxa de download" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "QoS-Estático - Taxa de Upload" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Rede de Destino (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Rede de Destino (IPV6/MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "Esta página dá uma visão geral sobre a taxa atual de download/upload." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Prioridade do tráfego" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Configuração da Prioridade do Tráfego" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Tipo de Taxa Limite" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Unidade" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Largura de Banda de Upload (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Taxa de Upload" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Lista Branca para a Limitação da Taxa" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "por exemplo, https, 23, (separado por vírgulas)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/ro/nft-qos.po b/applications/luci-app-nft-qos/po/ro/nft-qos.po deleted file mode 100644 index 47000cad4d..0000000000 --- a/applications/luci-app-nft-qos/po/ro/nft-qos.po +++ /dev/null @@ -1,274 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-08-23 17:45+0000\n" -"Last-Translator: CRISTIAN ANDREI \n" -"Language-Team: Romanian \n" -"Language: ro\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" -"X-Generator: Weblate 5.13\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Total Octeți" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Colectare date..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Comentariu" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Rata de descărcare implicită" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Unitate de descărcare implicită" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Interfața de rețea implicită" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Rata de încărcare implicită" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Unitate de încărcare implicită" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Unitatea implicită pentru rata de descărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Unitatea implicită pentru rata de încărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Valoarea implicită pentru lățimea de bandă de descărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Valoarea implicită pentru rata de descărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Valoarea implicită pentru lățimea de bandă de încărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Valoarea implicită pentru rata de încărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Lățime de bandă de descărcare (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Rata de descărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Activați funcția de limitare a ratei" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Activați prioritatea de trafic" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Activați această funcție" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Acordă acces UCI pentru luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Numele gazdei (hostname)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Adresă IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "Adresa IP (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "Adresa IP (numai v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Activare limită" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Limitarea ratei în funcție de adresa IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Limitarea ratei în funcție de adresa Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Limitarea ratei de trafic în funcție de adresa Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Tipul de limită" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Adresa MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Setări NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Interfața de rețea pentru adaptarea traficului, de exemplu br-lan, eth0.1, " -"eth0 etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" -"Rețeaua care urmează să fie aplicată, de exemplu 192.168.1.0/24, " -"10.2.0.0/16, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" -"Rețeaua care urmează să fie aplicată, de exemplu AAAA::BBBB/64, CCCC::1/128, " -"etc." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Nu există informații disponibile" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Pachete Total" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioritate" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protocol" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS pe Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Tarif" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Rata de descărcare în timp real" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Rata în timp real" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Rata de încărcare în timp real" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Serviciul" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "QoS statică - Rata de descărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "QoS statică - Rata de încărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Rețeaua țintă (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Rețea țintă6 (IPv6/MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Această pagină oferă o imagine de ansamblu asupra ratei actuale de " -"descărcare/încărcare." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Prioritate de trafic" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Setări privind prioritatea traficului" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Tipul de limită Rata" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Unitatea" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Lățime de bandă de încărcare (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Rata de încărcare" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Lista albă pentru rata limită" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "de exemplu, https, 23, (separatorul este virgulă)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/ru/nft-qos.po b/applications/luci-app-nft-qos/po/ru/nft-qos.po deleted file mode 100644 index fa8f7fa983..0000000000 --- a/applications/luci-app-nft-qos/po/ru/nft-qos.po +++ /dev/null @@ -1,268 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-05-12 14:57+0000\n" -"Last-Translator: SnIPeRSnIPeR \n" -"Language-Team: Russian \n" -"Language: ru\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Weblate 5.12-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Всего байт" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Сбор данных..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Комментарий" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Скорость загрузки по умолчанию" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Единица загрузки по умолчанию" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Сетевой интерфейс по умолчанию" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Скорость отправки по умолчанию" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Единица отправки по умолчанию" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Единица скорости загрузки по умолчанию" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Единица скорости отправки по умолчанию" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Значение по умолчанию для пропускной способности загрузки" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Значение по умолчанию для скорости загрузки" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Значение по умолчанию для пропускной способности отправки" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Значение по умолчанию для скорости отправки" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Скорость загрузки (Мбит/с)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Скорость загрузки" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Включить функцию ограничения скорости" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Включить приоритет трафика" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Включить эту функцию" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Предоставить UCI доступ для luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Имя хоста" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP-адрес" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP-адрес (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP-адрес (только v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Включить ограничение" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Ограничение скорости по IP-адресу" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Ограничение скорости по Mac-адресу" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Ограничение скорости трафика по Mac-адресу" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Тип лимита" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC-адрес" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "МБ" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Настройки NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Сетевой интерфейс для формирования трафика, например, br-lan, eth0.1, eth0 и " -"т. д." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Сеть для применения, например, 192.168.1.0/24, 10.2.0.0/16 и т.д." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Сеть для применения, например, AAAA::BBBB/64, CCCC::1/128 и т.д." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Нет доступной информации" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Всего пакетов" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Приоритет" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Протокол" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS через nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Скорость" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Скорость загрузки в реальном времени" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Скорость в реальном времени" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Скорость отправки в реальном времени" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Служба" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Статический QoS - Скорость загрузки" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Статический QoS - Скорость отправки" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Целевая сеть (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Целевая сеть (IPv6/MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "На этой странице представлен обзор текущей скорости загрузки/выгрузки." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Приоритет трафика" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Настройки приоритета трафика" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Тип ограничения скорости" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "узел" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Скорость отправки(Мбит/с)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Скорость отправки" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Белый список для ограничения скорости" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "например, https, 23, (разделитель - запятая)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "кБ" diff --git a/applications/luci-app-nft-qos/po/sk/nft-qos.po b/applications/luci-app-nft-qos/po/sk/nft-qos.po deleted file mode 100644 index 9d21207ab2..0000000000 --- a/applications/luci-app-nft-qos/po/sk/nft-qos.po +++ /dev/null @@ -1,266 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2023-07-09 09:41+0000\n" -"Last-Translator: MaycoH \n" -"Language-Team: Slovak \n" -"Language: sk\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 5.0-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bytov celkom" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Zbieram dáta..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Komentár" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Názov hostiteľa" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Adresa IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -#, fuzzy -msgid "MAC Address" -msgstr "Adresa MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Nie sú dostupné žiadne informácie" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokol" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/sv/nft-qos.po b/applications/luci-app-nft-qos/po/sv/nft-qos.po deleted file mode 100644 index 5e145f5aa8..0000000000 --- a/applications/luci-app-nft-qos/po/sv/nft-qos.po +++ /dev/null @@ -1,276 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-05-12 20:34+0000\n" -"Last-Translator: Daniel Nilsson \n" -"Language-Team: Swedish \n" -"Language: sv\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.5.4\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bytes Totalt" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Samlar in data..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Kommentar" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Standardhastighet för hämtning" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Standardenhet för hämtning" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Standard nätverksgränssnitt" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Standardhastighet för uppladdning" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Standardenhet för uppladdning" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Standardenhet för uppladdningshastighet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Standardenhet för uppladdningshastighet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -#, fuzzy -msgid "Default value for download bandwidth" -msgstr "Standardvärde för hämtningens bandbredd" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -#, fuzzy -msgid "Default value for download rate" -msgstr "Standardvärde för hämtningens hastighet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Standardvärde för uppladdningens bandbredd" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -#, fuzzy -msgid "Default value for upload rate" -msgstr "Standardvärde för uppladdningens hastighet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Bandbredd för hämtningen (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Hastighet för hämtning" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Aktivera hastighetsgränsvärde" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Aktivera trafikprioritet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Aktivera den här funktionen" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -#, fuzzy -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Ge UCI åtkomst för luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Värdnamn" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP-adress" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP-adress (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP-adress (Endast v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Aktivera gräns" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Begränsa hastighet per IP-adress" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Begränsa hastighet per MAC-adress" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Begränsa trafik hastighet per MAC-adress" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Typ av begränsning" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC-address" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Inställningar för NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Nätverksgränssnitt för Traffic Shaping, t.ex. br-lan, eth0.1, eth0, etc." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" -"Till vilket nätverk tillämpas detta t.ex. , e.g. 192.168.1.0/24, " -"10.2.0.0/16, osv." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" -"Till vilket nätverk tillämpas detta t.ex. , e.g. AAAA::BBBB/64, CCCC::1/128, " -"osv." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Ingen information tillgänglig" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Pakettotal" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Prioritet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokoll" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS över Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Hastighet" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Hastighet för hämtning i realtid" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Hastighet i realtid" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Uppladdningshastighet i realtid" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Tjänst" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Statisk QoS nedladdningshastighet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Statisk QoS uppladdningshastighet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Målnätverk (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Målnätverk6 (IPv6/MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Den här sidan ger en överblick över nuvarande hastighet för hämtning/" -"uppladdning." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Prioriterad trafik" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Inställningar för prioriterad trafik" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Typ av hastighetsbegränsning" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Enhet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Bandbredd för uppladdning (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Uppladdningshastighet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Vitlista för hastighetsbegränsning" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "t.ex. https, 23, (kommaseparerad)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/ta/nft-qos.po b/applications/luci-app-nft-qos/po/ta/nft-qos.po deleted file mode 100644 index 94590578ca..0000000000 --- a/applications/luci-app-nft-qos/po/ta/nft-qos.po +++ /dev/null @@ -1,268 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-01-25 19:41+0000\n" -"Last-Translator: தமிழ்நேரம் \n" -"Language-Team: Tamil \n" -"Language: ta\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.10-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "மொத்தம்" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "தரவு சேகரித்தல் ..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "கருத்து" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "இயல்புநிலை பதிவிறக்க வீதம்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "இயல்புநிலை பதிவிறக்க அலகு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "இயல்புநிலை பிணைய இடைமுகம்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "இயல்புநிலை பதிவேற்ற விகிதம்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "இயல்புநிலை பதிவேற்ற அலகு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "பதிவிறக்க வீதத்திற்கான இயல்புநிலை அலகு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "பதிவேற்ற விகிதத்திற்கான இயல்புநிலை அலகு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "பதிவிறக்கம் அலைவரிசைக்கான இயல்புநிலை மதிப்பு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "பதிவிறக்க வீதத்திற்கான இயல்புநிலை மதிப்பு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "பதிவேற்ற அலைவரிசைக்கான இயல்புநிலை மதிப்பு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "பதிவேற்ற விகிதத்திற்கான இயல்புநிலை மதிப்பு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "அலைவரிசை பதிவிறக்கவும் (எம்.பி.பி.எச்)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "பதிவிறக்க வீதம்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "வரம்பு வீத அம்சத்தை இயக்கவும்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "போக்குவரத்து முன்னுரிமையை இயக்கவும்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "இந்த அம்சத்தை இயக்கவும்" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "லூசி-ஆப்-என்எஃப்டி-கேஓஎச்சிற்கான யுசிஐ அணுகலை வழங்கவும்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "புரவலன்பெயர்" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "ஐபி முகவரி" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "ஐபி முகவரி (வி 4 / வி 6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "ஐபி முகவரி (வி 4 மட்டும்)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "வரம்பு இயக்கு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "ஐபி முகவரி மூலம் வீதத்தைக் கட்டுப்படுத்துங்கள்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "MAC முகவரி மூலம் விகிதத்தைக் கட்டுப்படுத்துங்கள்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "MAC முகவரி மூலம் போக்குவரத்து வீதத்தைக் கட்டுப்படுத்துங்கள்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "வரம்பு வகை" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "மேக் முகவரி" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "எம்பி" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QOS அமைப்புகள்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"போக்குவரத்து வடிவமைப்பிற்கான பிணைய இடைமுகம், எ.கா. br-lan, eth0.1, eth0, முதலியன." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "பிணையம் பயன்படுத்தப்பட வேண்டும், எ.கா. 192.168.1.0/24, 10.2.0.0/16, முதலியன." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" -"பிணையம் பயன்படுத்தப்பட வேண்டும், எ.கா. AAAA :: BBBB/64, CCCC :: 1/128, முதலியன." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "எந்த தகவலும் கிடைக்கவில்லை" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "மொத்தம் பாக்கெட்டுகள்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "முன்னுரிமை" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "நெறிமுறை" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "Nftables க்கு மேல் QoS" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "விகிதம்" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "நிகழ்நேர பதிவிறக்க வீதம்" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "நிகழ்நேர வீதம்" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "நிகழ்நேர பதிவேற்ற வீதம்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "பணி" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "நிலையான QoS-DOWNLOAD விகிதம்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "நிலையான QoS- பதிவேற்ற விகிதம்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "இலக்கு பிணையம் (ஐபிவி 4/மாச்க்)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "இலக்கு பிணையம் 6 (ஐபிவி 6/மாச்க்)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"இந்த பக்கம் தற்போது பதிவிறக்கம்/பதிவேற்ற வீதத்தைப் பற்றிய ஒரு கண்ணோட்டத்தை வழங்குகிறது." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "போக்குவரத்து முன்னுரிமை" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "போக்குவரத்து முன்னுரிமை அமைப்புகள்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "வரம்பு வீத வகை" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "அலகு" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "அலைவரிசையை பதிவேற்றவும் (எம்.பி.பி.எச்)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "பதிவேற்ற விகிதம்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "வரம்பு வீதத்திற்கான வெள்ளை பட்டியல்" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "எ.கா. https, 23, (பிரிப்பான் கமா)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "கே.பி." diff --git a/applications/luci-app-nft-qos/po/templates/nft-qos.pot b/applications/luci-app-nft-qos/po/templates/nft-qos.pot deleted file mode 100644 index 1066ce2492..0000000000 --- a/applications/luci-app-nft-qos/po/templates/nft-qos.pot +++ /dev/null @@ -1,256 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "" diff --git a/applications/luci-app-nft-qos/po/tr/nft-qos.po b/applications/luci-app-nft-qos/po/tr/nft-qos.po deleted file mode 100644 index 1e2b3c3dfd..0000000000 --- a/applications/luci-app-nft-qos/po/tr/nft-qos.po +++ /dev/null @@ -1,265 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2024-08-17 13:21+0000\n" -"Last-Translator: Oğuz Ersen \n" -"Language-Team: Turkish \n" -"Language: tr\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.7\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Bayt Toplamı" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Veriler toplanıyor..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Yorum" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Varsayılan İndirme Hızı" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Varsayılan İndirme Birimi" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Varsayılan Ağ Arayüzü" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Varsayılan Yükleme Hızı" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Varsayılan Yükleme Birimi" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "İndirme hızı için varsayılan birim" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Yükleme hızı için varsayılan birim" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "İndirme bant genişliği için varsayılan değer" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "İndirme hızı için varsayılan değer" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Yükleme band genişliği için varsayılan değer" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Yükleme hızı için varsayılan değer" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "İndirme Band Genişliği (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "İndirme Hızı" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Limit Oranı Özelliğini Etkinleştir" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Trafik Önceliğini Etkinleştir" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Bu özelliği etkinleştirin" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "luci-app-nft-qos için UCI erişimi verin" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Ana bilgisayar adı" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP Adresi" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP Adresi (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP Adresi (Yalnızca v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Sınırı Etkinleştir" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "IP Adresine Göre Oranı Sınırla" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Mac Adresine Göre Oranı Sınırla" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Trafik Oranını Mac Adresine Göre Sınırlandırın" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Limit Türü" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC Adresi" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QoS Ayarları" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "Trafik Şekillendirme için Ağ Arayüzü, ör. br-lan, eth0.1, eth0 vb." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Uygulanacak ağ, ör. 192.168.1.0/24, 10.2.0.0/16 vb." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Uygulanacak ağ, ör. AAAA::BBBB/64, CCCC::1/128 vb." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Bilgi bulunmamaktadır" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Paket Toplamı" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Öncelik" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Protokol" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "Nftables üzerinden QoS" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Oran" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Gerçek Zamanlı İndirme Hızı" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Gerçek Zamanlı Oran" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Gerçek Zamanlı Yükleme Hızı" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Hizmet" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Statik QoS-İndirme Hızı" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Statik QoS-Yükleme Hızı" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Hedef Ağ (IPv4 / MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Hedef Ağ6 (IPv6 / MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "Bu sayfa, mevcut indirme / yükleme hızına genel bir bakış sunar." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Trafik Önceliği" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Trafik Öncelik Ayarları" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Limit Oranı Türü" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Birim" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Yükleme Bant Genişliği (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Yükleme Hızı" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Limit Oranı Beyaz Listesi" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "Örneğin. https, 23, (ayırıcı virgüldür)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/uk/nft-qos.po b/applications/luci-app-nft-qos/po/uk/nft-qos.po deleted file mode 100644 index cededacb24..0000000000 --- a/applications/luci-app-nft-qos/po/uk/nft-qos.po +++ /dev/null @@ -1,270 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-06-17 14:41+0000\n" -"Last-Translator: Максим Горпиніч \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Weblate 5.12.1\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Усього байтів" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Збирання даних..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Примітка" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Швидкість завантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Одиниця завантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Мережевий інтерфейс за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Швидкість завантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Одиниця відвантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Одиниця швидкості завантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Одиниця швидкості відвантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Значення пропускної здатності завантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Значення швидкості завантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Значення пропускної здатності відвантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Значення швидкості відвантаження за умовчанням" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Пропускна здатність завантаження (Мбіт/с)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Швидкість завантаження" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Увімкнути функцію обмеження швидкості" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Увімкнути пріоритет трафіку" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Увімкнути цю функцію" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Надати UCI доступ для luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "Ім'я хосту" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP-адреса" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP-адреса (v4/v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP-адреса (лише v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Увімкнути обмеження" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Обмеження ставки за IP-адресою" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Обмеження ставки за Mac-адресою" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Обмежити швидкість трафіку за MAC-адресою" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Тип ліміту" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC-адреса" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "МБ" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Налаштування NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Мережевий інтерфейс для шейпінга трафіку, напр. br-lan, eth0.1, eth0 тощо." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" -"Мережа, до якої потрібно застосувати, напр. 192.168.1.0/24, 10.2.0.0/16 тощо." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" -"Мережа, до якої потрібно застосувати, напр. AAAA::BBBB/64, CCCC::1/128 тощо." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Інформація відсутня" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Усього пакетів" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Пріоритет" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Протокол" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS через Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Швидкість" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Швидкість завантаження в реальному часі" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Швидкість в реальному часі" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Швидкість відвантаження в реальному часі" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Служба" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Статична швидкість завантаження QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Статична швидкість відвантаження QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Цільова мережа (IPv4/МАСКА)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Цільова мережа (IPv6/МАСКА)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"На цій сторінці наведено огляд поточної швидкості завантаження/відвантаження." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Пріоритет трафіку" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Налаштування пріоритету трафіку" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Тип обмеження швидкості" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Одиниця" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Пропускна здатність відвантаження (Мбіт/с)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Швидкість відвантаження" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Білий список обмеження швидкості" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "напр. https, 23, (роздільник - кома)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "кБ" diff --git a/applications/luci-app-nft-qos/po/vi/nft-qos.po b/applications/luci-app-nft-qos/po/vi/nft-qos.po deleted file mode 100644 index 00a18940d1..0000000000 --- a/applications/luci-app-nft-qos/po/vi/nft-qos.po +++ /dev/null @@ -1,268 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-08-05 09:41+0000\n" -"Last-Translator: Vũ Minh Ngọc \n" -"Language-Team: Vietnamese \n" -"Language: vi\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.13-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "Tổng số byte" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "Đang lấy dữ liệu..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "Bình luận" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "Tốc độ tải xuống mặc định" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "Đơn vị tải xuống mặc định" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "Giao diện mạng mặc định" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "Tốc độ tải lên mặc định" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "Đơn vị tải lên mặc định" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "Đơn vị mặc định cho tốc độ tải xuống" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "Đơn vị mặc định cho tốc độ tải lên" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "Giá trị mặc định cho băng thông tải xuống" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "Giá trị mặc định cho tốc độ tải xuống" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "Giá trị mặc định cho băng thông tải lên" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "Giá trị mặc định cho tốc độ tải lên" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "Băng thông tải xuống (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "Tỷ lệ tải xuống" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "Kích hoạt tính năng tỷ lệ giới hạn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "Bật ưu tiên lưu lượng truy cập" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "Kích hoạt tính năng này" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Cấp quyền truy cập UCI cho luci-app-nft-qos" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -#, fuzzy -msgid "Hostname" -msgstr "Tên máy chủ" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "Địa chỉ IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "Địa chỉ IP (v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "Địa chỉ IP (Chỉ v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "Kích hoạt giới hạn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "Tỷ lệ giới hạn theo địa chỉ IP" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "Tỷ lệ giới hạn theo địa chỉ Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "Giới hạn tỷ lệ lưu lượng truy cập theo địa chỉ Mac" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "Loại giới hạn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "Địa chỉ MAC" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "Cài đặt NFT-QoS" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" -"Giao diện mạng để định hình lưu lượng, ví dụ: br-lan, eth0.1, eth0, v.v." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "Mạng được áp dụng, ví dụ: 192.168.1.0/24, 10.2.0.0/16, v.v." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "Mạng được áp dụng, ví dụ: AAAA::BBBB/64, CCCC::1/128, v.v." - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "Không có thông tin có sẵn" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "Tổng Packets" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "Ưu tiên" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "Giao thức" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS over Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "Rate" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "Tỷ lệ tải xuống thời gian thực" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "Tỷ lệ thời gian thực" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "Tỷ lệ tải lên theo thời gian thực" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "Dịch vụ" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "Tốc độ tải xuống QoS tĩnh" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "Tốc độ tải lên QoS tĩnh" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "Target Network (IPv4/MASK)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "Target Network6 (IPv6/MASK)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "" -"Trang này cung cấp thông tin tổng quan về tốc độ tải xuống/tải lên hiện tại." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "Ưu tiên lưu lượng" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "Cài đặt ưu tiên lưu lượng" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "Loại tỷ lệ giới hạn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "Đơn vị" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "Băng thông tải lên (Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "Tỷ lệ tải lên" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "Danh sách trắng cho tỷ lệ giới hạn" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "e.g. https, 23, (separator is comma)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/zh_Hans/nft-qos.po b/applications/luci-app-nft-qos/po/zh_Hans/nft-qos.po deleted file mode 100644 index 2c1c6b5ebd..0000000000 --- a/applications/luci-app-nft-qos/po/zh_Hans/nft-qos.po +++ /dev/null @@ -1,272 +0,0 @@ -# -# Yangfl , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2024-07-17 09:21+0000\n" -"Last-Translator: 大王叫我来巡山 " -"\n" -"Language-Team: Chinese (Simplified) \n" -"Language: zh_Hans\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.7-dev\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "字节总数" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "正在收集数据中..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "注释" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "默认下载速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "默认下载速率单位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "默认网络接口" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "默认上传速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "默认上传速率单位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "默认的下载速率单位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "默认的上传速率单位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "下载带宽的默认值" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "下载速率的默认值" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "上传带宽的默认值" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "上传速率的默认值" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "下载带宽(Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "下载速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "开启速率限制功能" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "开启流量优先级" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "开启这个功能" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "授予UCI访问luci-app-nft-qos的权限" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "主机名" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP 地址" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP 地址(v4 / v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP 地址(仅 v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "限速开启" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "根据 IP 地址限制速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "根据 Mac 地址限制速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "按 Mac 地址限制通信量速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "限速类型" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC 地址" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QoS 设置" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "流量整形的目标网络接口,例如:br-lan、eth0.1、eth0 等。" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "要应用规则的网络,例如:192.168.1.0/24、10.2.0.0/16 等。" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "要应用规则的网络,例如:AAAA::BBBB/64、CCCC::1/128 等。" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "无可用信息" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "数据包总数" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "优先级" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "协议" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS Nftables 版" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "速率" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "实时下载速率" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "实时速率显示" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "实时上传速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "服务" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "静态 QoS-下载速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "静态 QoS-上传速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "目标网络(IPv4 地址/掩码)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "目标网络 v6(IPv6 地址/掩码)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "该页面提供了当前上传和下载速率的一个总览。" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "流量优先级" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "流量优先级设置" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "限速的类型" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "单元" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "上传带宽(Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "上传速率" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "限速白名单" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "例如https, 23(用逗号分隔)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/zh_Hant/nft-qos.po b/applications/luci-app-nft-qos/po/zh_Hant/nft-qos.po deleted file mode 100644 index 461a49b9ef..0000000000 --- a/applications/luci-app-nft-qos/po/zh_Hant/nft-qos.po +++ /dev/null @@ -1,271 +0,0 @@ -# -# Yangfl , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2025-06-18 15:01+0000\n" -"Last-Translator: EESF-2 \n" -"Language-Team: Chinese (Traditional Han script) \n" -"Language: zh_Hant\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.12.1\n" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 -msgid "Bytes Total" -msgstr "位元組總數" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 -msgid "Collecting data..." -msgstr "收集資料中..." - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225 -msgid "Comment" -msgstr "註解" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default Download Rate" -msgstr "下載速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default Download Unit" -msgstr "單位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Default Network Interface" -msgstr "選擇網路介面" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default Upload Rate" -msgstr "上傳速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default Upload Unit" -msgstr "單位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 -msgid "Default unit for download rate" -msgstr "下載速度單位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 -msgid "Default unit for upload rate" -msgstr "上傳速度單位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Default value for download bandwidth" -msgstr "下載頻寬數值" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 -msgid "Default value for download rate" -msgstr "下載速度數值" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Default value for upload bandwidth" -msgstr "上傳頻寬數值" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 -msgid "Default value for upload rate" -msgstr "上傳速度數值" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 -msgid "Download Bandwidth (Mbps)" -msgstr "下載頻寬(Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 -msgid "Download Rate" -msgstr "下載速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Enable Limit Rate Feature" -msgstr "啟用速度限制功能" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable Traffic Priority" -msgstr "啟用流量優先順序" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112 -msgid "Enable this feature" -msgstr "啟用此功能" - -#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 -msgid "Grant UCI access for luci-app-nft-qos" -msgstr "授予luci-app-nft-qos存取UCI的權限" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240 -msgid "Hostname" -msgstr "主機名稱" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 -msgid "IP Address" -msgstr "IP位址" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:168 -msgid "IP Address (v4 / v6)" -msgstr "IP位址(v4/v6)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 -msgid "IP Address (v4 Only)" -msgstr "IP位址(僅v4)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 -msgid "Limit Enable" -msgstr "啟用限速" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33 -msgid "Limit Rate by IP Address" -msgstr "根據IP位址限制速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34 -msgid "Limit Rate by Mac Address" -msgstr "根據MAC位址限制速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235 -msgid "Limit Traffic Rate By Mac Address" -msgstr "根據MAC位址限制流量速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Limit Type" -msgstr "限速類別" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 -msgid "MAC Address" -msgstr "MAC位址" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 -msgid "MB" -msgstr "MB" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 -msgid "NFT-QoS Settings" -msgstr "NFT-QoS設定" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "用於流量整形的網路介面,例如br-lan、eth0.1、eth0等。" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "套用的網路,例如192.168.1.0/24、10.2.0.0/16等。" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "套用的網路,例如AAAA::BBBB/64、CCCC::1/128等。" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 -msgid "No information available" -msgstr "無可用資訊" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 -msgid "Packets Total" -msgstr "封包總數" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208 -msgid "Priority" -msgstr "優先權" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200 -msgid "Protocol" -msgstr "協定" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 -msgid "QoS over Nftables" -msgstr "QoS over Nftables" - -#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177 -msgid "Rate" -msgstr "速度" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 -msgid "Realtime Download Rate" -msgstr "實時下載速度" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 -msgid "Realtime Rate" -msgstr "實時速度顯示" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 -msgid "Realtime Upload Rate" -msgstr "實時上傳速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "Service" -msgstr "服務" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125 -msgid "Static QoS-Download Rate" -msgstr "靜態QoS下載速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 -msgid "Static QoS-Upload Rate" -msgstr "靜態QoS上傳速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 -msgid "Target Network (IPv4/MASK)" -msgstr "目標網路(IPv4/遮罩)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 -msgid "Target Network6 (IPv6/MASK)" -msgstr "目標網路(IPv6/遮罩)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 -msgid "This page gives an overview over currently download/upload rate." -msgstr "該頁面提供了當前上傳和下載速度概覽。" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35 -msgid "Traffic Priority" -msgstr "流量優先順序" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195 -msgid "Traffic Priority Settings" -msgstr "流量優先順序設定" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 -msgid "Type of Limit Rate" -msgstr "限速類別" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264 -msgid "Unit" -msgstr "單位" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 -msgid "Upload Bandwidth (Mbps)" -msgstr "上傳頻寬(Mbps)" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259 -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 -msgid "Upload Rate" -msgstr "上傳速度" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 -msgid "White List for Limit Rate" -msgstr "限速白名單" - -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 -msgid "e.g. https, 23, (separator is comma)" -msgstr "例如 「https,23」(用逗號分隔)" - -#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 -msgid "kB" -msgstr "kB" diff --git a/applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json b/applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json deleted file mode 100644 index b2de6260ba..0000000000 --- a/applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "luci-app-nft-qos": { - "description": "Grant UCI access for luci-app-nft-qos", - "read": { - "uci": [ "nft-qos" ] - }, - "write": { - "uci": [ "nft-qos" ] - } - } -}